Create Storage Driver

Create a new storage driver

Request
Request Body schema: application/json

: driver payload

type
required
string
Enum: "mongo" "gcs" "s3" "fs" "azureblob"
creator
required
string
integrationId
string
S3IntegrationConfig (object) or GcsIntegrationConfig (object) or AzureBlobIntegrationConfig (object)
required
object (MetaData)
name
required
string
required
S3DriverPayload (object) or GcsDriverPayload (object) or AzureBlobDriverPayload (object) or FSDriverPayload (object)
property name*
additional property
any
Responses
200

Ok

post/drivers
Request samples
application/json
{
  • "type": "mongo",
  • "creator": "string",
  • "integrationId": "string",
  • "integrationConfig": {
    },
  • "metadata": {
    },
  • "name": "string",
  • "payload": {
    }
}
Response samples
application/json
{
  • "id": "string",
  • "type": "mongo",
  • "creator": "string",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "name": "string",
  • "projectId": "string"
}